259. Araxis Merge File Comparison Report

Produced by Araxis Merge on 2021-05-13 09:09:04 +0000. See www.araxis.com for information about Merge. This report uses XHTML and CSS2, and is best viewed with a modern standards-compliant browser. For optimum results when printing this report, use landscape orientation and enable printing of background images and colours in your browser.

259.1 Files compared

#LocationFileLast Modified
1/Applications/Ampps/www/Porto 3.2.2/Theme Files/Magento 2.x/Porto Theme/app/design/frontend/Smartwave/porto/Magento_Search/templatesform.mini.phtml2018-01-11 01:12:46 +0000
2/Applications/Ampps/www/Porto v4.0.0/Theme Files/Magento 2.x/Porto Theme/app/design/frontend/Smartwave/porto/Magento_Search/templatesform.mini.phtml2021-01-05 09:25:52 +0000

259.2 Comparison summary

DescriptionBetween
Files 1 and 2
Text BlocksLines
Unchanged396
Changed00
Inserted00
Removed24

259.3 Comparison options

WhitespaceConsecutive whitespace is treated as a single space
Character caseDifferences in character case are significant
Line endingsDifferences in line endings (CR and LF characters) are ignored
CR/LF charactersNot shown in the comparison detail
Active line-pairing rules

259.4 Active regular expressions

No regular expressions were active.

259.5 Comparison detail

1 <?php 1 <?php
2 /** 2 /**
3  * Copyright © 2013-2017 Magento, Inc. All rights reserved. 3  * Copyright © 2013-2017 Magento, Inc. All rights reserved.
4  * See COPYING.txt for license details. 4  * See COPYING.txt for license details.
5  */ 5  */
6  6 
7 // @codingStandardsIgnoreFile 7 // @codingStandardsIgnoreFile
8 ?> 8 ?>
9 <?php 9 <?php
10 /** @var $block \Magento\Framework\View\Element\Template */ 10 /** @var $block \Magento\Framework\View\Element\Template */
11 /** @var $helper \Magento\Search\Helper\Data */ 11 /** @var $helper \Magento\Search\Helper\Data */
12 $helper = $this->helper('Magento\Search\Helper\Data'); 12 $helper = $this->helper('Magento\Search\Helper\Data');
13 ?> 13 ?>
14 <div class="block block-search"> 14 <div class="block block-search">
15     <div class="block block-title"><strong><?php /* @escapeNotVerified */ echo __('Search'); ?></strong></div>    
16     <div class="block block-content"> 15     <div class="block block-content">
17         <form class="form minisearch" id="search_mini_form" action="<?php /* @escapeNotVerified */ echo $helper->getResultUrl() ?>" method="get"> 16         <form class="form minisearch" id="search_mini_form" action="<?php /* @escapeNotVerified */ echo $helper->getResultUrl() ?>" method="get">
18             <div class="field search"> 17             <div class="field search">
19                 <label class="label" for="search" data-role="minisearch-label">    
20                     <span><?php /* @escapeNotVerified */ echo __('Search'); ?></span>    
21                 </label>    
22                 <div class="control"> 18                 <div class="control">
23                     <input id="search" 19                     <input id="search"
24                            data-mage-init='{"quickSearch":{ 20                            data-mage-init='{"quickSearch":{
25                                 "formSelector":"#search_mini_form", 21                                 "formSelector":"#search_mini_form",
26                                 "url":"<?php /* @escapeNotVerified */ echo $block->getUrl('search/ajax/suggest', ['_secure' => $block->getRequest()->isSecure()]); ?>", 22                                 "url":"<?php /* @escapeNotVerified */ echo $block->getUrl('search/ajax/suggest', ['_secure' => $block->getRequest()->isSecure()]); ?>",
27                                 "destinationSelector":"#search_autocomplete"} 23                                 "destinationSelector":"#search_autocomplete"}
28                            }' 24                            }'
29                            type="text" 25                            type="text"
30                            name="<?php /* @escapeNotVerified */ echo $helper->getQueryParamName() ?>" 26                            name="<?php /* @escapeNotVerified */ echo $helper->getQueryParamName() ?>"
31                            value="<?php /* @escapeNotVerified */ echo $helper->getEscapedQueryText() ?>" 27                            value="<?php /* @escapeNotVerified */ echo $helper->getEscapedQueryText() ?>"
32                            placeholder="<?php /* @escapeNotVerified */ echo __('Search...'); ?>" 28                            placeholder="<?php /* @escapeNotVerified */ echo __('Search...'); ?>"
33                            class="input-text" 29                            class="input-text"
34                            maxlength="<?php /* @escapeNotVerified */ echo $helper->getMaxQueryLength();?>" 30                            maxlength="<?php /* @escapeNotVerified */ echo $helper->getMaxQueryLength();?>"
35                            role="combobox" 31                            role="combobox"
36                            aria-haspopup="false" 32                            aria-haspopup="false"
37                            aria-autocomplete="both" 33                            aria-autocomplete="both"
38                            autocomplete="off"/> 34                            autocomplete="off"/>
39                     <div id="search_autocomplete" class="search-autocomplete"></div> 35                     <div id="search_autocomplete" class="search-autocomplete"></div>
40                     <?php echo $block->getChildHtml() ?> 36                     <?php echo $block->getChildHtml() ?>
41                 </div> 37                 </div>
42             </div> 38             </div>
43             <div class="actions"> 39             <div class="actions">
44                 <button type="submit" 40                 <button type="submit"
45                         title="<?php echo $block->escapeHtml(__('Search')) ?>" 41                         title="<?php echo $block->escapeHtml(__('Search')) ?>"
46                         class="action search"> 42                         class="action search">
47                     <span><?php /* @escapeNotVerified */ echo __('Search'); ?></span> 43                     <span><?php /* @escapeNotVerified */ echo __('Search'); ?></span>
48                 </button> 44                 </button>
49             </div> 45             </div>
50         </form> 46         </form>
51     </div> 47     </div>
52 </div> 48 </div>